home *** CD-ROM | disk | FTP | other *** search
/ CSi Master: Ableton Live 5 / CSi Master: Ableton Live 5.iso / pc / rsrc / locrsrc / cstshared.cst / 00015_keyupLOGIC.ls < prev    next >
Encoding:
Text File  |  2005-07-28  |  527 b   |  20 lines

  1. on keyupLOGIC_OLD
  2.   
  3.   --------------- REWIND -------------------v
  4.   if the keyCOde = 123 then -- LEFT
  5.     set the member of sprite 15 to member "rewind off"
  6.     updateStage
  7.     set the movierate of sprite 46 to 1
  8.   end if
  9.   
  10.   --------------- FST FWD -------------------v
  11.   if the keyCOde = 124 then -- RIGHT
  12.     set the member of sprite 16 to member "fast forward off"
  13.     updateStage
  14.     if (the movietime of sprite 46) < (the duration of sprite 46) then
  15.       set the movierate of sprite 46 to 1
  16.     end if
  17.   end if
  18.   
  19. end
  20.